home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / sorts / sorts.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-09-06  |  1.5 KB  |  53 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   2730
  5.    ClientLeft      =   1515
  6.    ClientTop       =   2220
  7.    ClientWidth     =   6075
  8.    Height          =   3135
  9.    Left            =   1455
  10.    LinkMode        =   1  'Source
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   2730
  13.    ScaleWidth      =   6075
  14.    Top             =   1875
  15.    Width           =   6195
  16.    Begin CommandButton Command2 
  17.       Caption         =   "Exit"
  18.       Height          =   492
  19.       Left            =   2160
  20.       TabIndex        =   2
  21.       Top             =   1800
  22.       Width           =   1932
  23.    End
  24.    Begin CommandButton Command1 
  25.       Caption         =   "Run Test Case"
  26.       Height          =   492
  27.       Left            =   2160
  28.       TabIndex        =   1
  29.       Top             =   1080
  30.       Width           =   1932
  31.    End
  32.    Begin Label Label1 
  33.       Alignment       =   2  'Center
  34.       Caption         =   "Test Case for SortStrings()"
  35.       FontBold        =   -1  'True
  36.       FontItalic      =   0   'False
  37.       FontName        =   "MS Sans Serif"
  38.       FontSize        =   12
  39.       FontStrikethru  =   0   'False
  40.       FontUnderline   =   0   'False
  41.       Height          =   492
  42.       Left            =   480
  43.       TabIndex        =   0
  44.       Top             =   360
  45.       Width           =   5172
  46.    End
  47. Sub Command1_Click ()
  48.     TestSorts
  49. End Sub
  50. Sub Command2_Click ()
  51.     End
  52. End Sub
  53.